home *** CD-ROM | disk | FTP | other *** search
- unit Target;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Buttons, ExtCtrls;
-
- type
- TDirectoryForm = class(TForm)
- Panel1: TPanel;
- DirEdit: TEdit;
- DirLabel: TLabel;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- private
- { Private declarations }
- public
- { Public declarations }
- function ShowForm(LabelCap, DefaultDir: String): integer;
- end;
-
- var
- DirectoryForm: TDirectoryForm;
-
- implementation
-
- {$R *.DFM}
-
- function TDirectoryForm.ShowForm(LabelCap, DefaultDir: String): integer;
- begin
- DirLabel.Caption := LabelCap;
- DirEdit.Text := DefaultDir;
- Result := ShowModal;
- end;
-
- end.
-